Conditions | 2 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | jQuery(document).ready(function ($) { |
||
21 | function showBlocks (blocks, offset) { |
||
22 | blocks.each(function () { |
||
23 | ($(this).offset().top <= $(window).scrollTop() + $(window).height() * offset && $(this).find('.cd-timeline-img').hasClass('is-hidden')) && $(this).find('.cd-timeline-img, .cd-timeline-content').removeClass('is-hidden').addClass('bounce-in'); |
||
24 | }); |
||
25 | } |
||
26 | }); |
||
27 |